.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

@-webkit-keyframes rainbow {
  0% {
    border-color: hsl(0, 100%, 50%);
  }

  14% {
    border-color: hsl(30, 100%, 50%);
  }

  28% {
    border-color: hsl(60, 100%, 50%);
  }

  42% {
    border-color: hsl(120, 100%, 50%);
  }

  56% {
    border-color: hsl(240, 100%, 50%);
  }

  70% {
    border-color: hsl(280, 100%, 50%);
  }

  84% {
    border-color: hsl(320, 100%, 50%);
  }

  100% {
    border-color: hsl(255, 100%, 50%);
  }
}

button[is='party-button'] {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  background: url("{{ 'dog-in-birthday-hat.jpg' | asset_img_url: '180x180' }}") no-repeat center;
  border-radius: 50%;
  border: 4px solid hsl(0, 100%, 50%);
  animation: rainbow 10s infinite alternate;
  -webkit-animation: rainbow 10s infinite alternate;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

button[is='party-button']:hover {
  transform: scale(1.1);
}

button[is='party-button']:active {
  transform: scale(0.95);
}

canvas:empty {
  display: initial;
}

.pify-purchaselimit-modal {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(18 18 18 / 75%);
  z-index: 100000001;
  display: none;
  color: black !important;
  /* 初始隐藏 */
}

.show {
  display: block;
  /* 显示模态框 */
}

html,
body {
  margin: 0;
  transition: all 0.3s ease;
}

html.modal-open,
body.modal-open {
  overflow: hidden;
  /* 禁止滚动 */
}

.pify-purchaselimit-modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pify-purchaselimit-item {
  width: 50%;
  height: auto;
  background-color: rgb(255 255 255);
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
}

.pify-purchaselimit-item-li1 {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

.pify-purchaselimit-item-li1-x {
  width: 16px;
  height: 20px;
  cursor: pointer;
  margin-right: 5px;
  margin-top: 5px;
}

.pify-purchaselimit-item-li3 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  margin-top: 10px;
}

.pify-purchaselimit-item-li3-save {
  width: 65px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgb(82 142 193);
  border-radius: 5px;
}

.pify-purchaselimit-item-li1-title {
  margin-top: 10px;
  flex: 1;
  margin-right: 10px;
}

.pify-purchaselimit-item-li2 {
  flex: 1;
}

.pify-purchaselimit-span4:empty,
.pify-purchaselimit-span3:empty {
  display: none;
}

.quantity__button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
  /* 其他禁用样式 */
}

.pify-purchaselimit-ul {
  padding-left: 40px;
  margin: 16px 0;
}

.pify-purchaselimit-list-item {
  display: list-item;
  /* 将 div 视为列表项 */
  list-style-type: disc;
  /* 设置列表符号为实心圆点 */
}