/** Shopify CDN: Minification failed

Line 192:0 Expected "}" to go with "{"

**/
.rcvp {
  margin: 18px 0 22px;
}

.rcvp__group + .rcvp__group {
  margin-top: 18px;
}

.rcvp__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rcvp__label {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f1f1f;
}

.rcvp__current {
  font-weight: 500;
  color: #5d5d5d;
  margin-left: 4px;
}

.rcvp__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rcvp__arrow {
  width: 34px;
  height: 34px;
  border: 1px solid #d7d1c8;
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rcvp__arrow:hover {
  background: #f7f4ee;
}

.rcvp__track-wrap {
  position: relative;
}

.rcvp__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.rcvp__track::-webkit-scrollbar {
  height: 6px;
}

.rcvp__track::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.18);
  border-radius: 999px;
}

.rcvp__pill {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 12px 16px;
  border: 1px solid #ddd6cb;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

.rcvp__pill:hover {
  background: #faf7f1;
  border-color: #cfc6ba;
}

.rcvp__pill.is-active {
  border: 2px solid #1d1d1d;
  background: #f5f1e8;
  padding: 11px 15px;
}

.rcvp__track--frames {
  gap: 12px;
}

.rcvp__frame {
  flex: 0 0 auto;
  width: 88px;
  border: 1px solid #ddd6cb;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  cursor: pointer;
  transition: .2s ease;
  text-align: center;
}

.rcvp__frame:hover {
  background: #faf7f1;
  border-color: #cfc6ba;
}

.rcvp__frame.is-active {
  border: 2px solid #1d1d1d;
  background: #f5f1e8;
  padding: 7px;
}

.rcvp__frame-thumb {
  width: 100%;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background: #f3f3f3;
  margin-bottom: 7px;
}

.rcvp__frame-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rcvp__frame-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #666;
}

.rcvp__frame-label {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  color: #222;
  word-break: break-word;
}

@media screen and (max-width: 749px) {
  .rcvp__group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rcvp__arrows {
    display: none;
  }

  .rcvp__pill {
    min-width: 96px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .rcvp__frame {
    width: 80px;
  }
