@keyframes rotate {
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

.dk-bundle {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-bottom: 8px;
  padding: 12px 16px;
  cursor: pointer;
  border: 1px solid var(--dk-bundle-primary-color, black);
  border-radius: var(--dk-bundle-border-radius, 0px);
  font-family: var(--dk-bundle-font-family, inherit);
}

.dk-bundle:hover {
  box-shadow: 0px 0px 0px 1px var(--dk-bundle-primary-color, black);
  border-color: var(--dk-bundle-primary-color, black);
}

.dk-bundle-add-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 12px;
  padding: 12px 16px;
  background-color: var(--dk-bundle-primary-color, black);
  cursor: pointer;
  border: none;
  border-radius: 0px;
  font-size: var(--dk-bundle-font-size, 16px);
  color: white;
  text-align: center;
}

.dk-bundle-add-to-cart:hover {
  box-shadow: 0px 0px 0px 1px var(--dk-bundle-primary-color, black);
}

.dk-bundle-info-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dk-bundle-input-container {
  display: flex;
  align-items: center;
}

.dk-bundle-most-popular-flag {
  margin-top: 4px;
  padding: 0px 8px;
  background-color: var(--dk-bundle-primary-color, black);
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  white-space: nowrap;
}

.dk-bundle-savings {
  width: fit-content;
  border-radius: 8px;
  font-size: calc(var(--dk-bundle-font-size, 16px) * .75);
  font-weight: bold;
  color: black;
  text-align: center;
}

.dk-bundle-selected {
  box-shadow: 0px 0px 0px 1px var(--dk-bundle-primary-color, black);
  background-color: var(--dk-bundle-primary-color-background, white);
  cursor: default;
  border-color: var(--dk-bundle-primary-color, black);
}

.dk-bundle-selected>.dk-bundle-selector-wrapper {
  padding-bottom: 12px;
}

.dk-bundle-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.dk-bundle-selector-input {
  appearance: none;
  -moz-box-align: center;
  -moz-box-pack: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0px;
  cursor: pointer;
}

.dk-bundle-selector-input::before,
.dk-bundle-selector-input::after {
  content: '';
  display: block;
  position: absolute;
  box-sizing: border-box;
  border-radius: 100%;
}

.dk-bundle-selector-input::before {
  width: 22px;
  height: 22px;
  margin: auto;
  border: 1px solid rgb(226, 226, 226);
}

.dk-bundle-selector-input::after {
  width: 10px;
  height: 10px;
  transition: background 0.25s linear 0s;
  background: rgb(255, 255, 255);
}

.dk-bundle-selector-input:hover::after,
.dk-bundle-selector-input:checked::after {
  background: rgb(45, 57, 88);
}

.dk-bundle-selector-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.dk-bundle-slot {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
}

.dk-bundle-slot:first-child {
  padding-top: 12px;
}

.dk-bundle-slot:last-child {
  padding-bottom: 12px;
}

.dk-bundle-slot-image {
  width: 36px;
  min-width: 36px;
  height: 36px;
}

.dk-bundle-slot-image img {
  width: 100%;
  height: 100%;
  border: 1px solid #999;
  border-radius: 4px;
}

.dk-bundle-slot-selector-wrapper {
  flex-grow: 1;
  width: 100%;
  height: 100%;
}

.dk-bundle-slot-variant-selector {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  scrollbar-width: thin;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 36px;
  padding-left: 12px;
  background: none;
  background-color: white;
  background-image: var(--dk-bundle-down-arrow-url);
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) 50%;
  background-size: 12px;
  cursor: pointer;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: calc(var(--dk-bundle-font-size, 16px) * .875);
  line-height: 34px;
  white-space: nowrap;
}

.dk-bundle-spinner {
  text-align: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.dk-bundle-spinner::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 3px solid #FFF;
  animation: prixClipFix 2s linear infinite ;
}

.dk-bundle-text {
  line-height: 1.4;
  font-size: var(--dk-bundle-font-size, 16px);
  font-weight: bold;
}