.credits-v2 {
  padding: 95px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.credits-v2 .background-overlay {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: auto;
  height: auto;
  max-width: none;
  max-height: 100%;
}

.credits-v2 .container {
  max-width: 926px !important;
}

.credits-v2-wrapper {
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  border: 1px solid #262365;
  border-radius: 10px;
  position: relative;
  min-height: 100%;
  height: 100%;
}

.credits-v2-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  top: 2px;
  left: 2px;
  border-radius: 10px;
  filter: blur(2px);
  border: 1px solid #262365;
  pointer-events: none !important;
}

.credits-v2-content {
  display: none;
  width: 100%;
  padding: 10px 50px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.credits-v2-wrapper.active .credits-v2-content {
  display: flex;
}

.credit-bundles-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.credit-bundle-wrap {
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  border: 1px solid #432dd0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.credit-bundle-wrap-top {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  overflow: hidden;
  width: 100%;
}
.credit-bundle-wrap-top::after {
  content: "";
  display: flex;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  position: absolute;
}
.credit-bundle-wrap-top .number-of-credits {
  font-weight: 600;
  font-family: "Avenir", sans-serif !important;
  font-size: 20px;
}

.credit-bundle-wrap-top .type-of-credits {
  font-weight: normal;
  font-family: "Avenir", sans-serif !important;
  font-size: 16px;
}

.credit-bundle-wrap-bottom {
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-of-credits {
  font-weight: 600;
  font-family: "Avenir", sans-serif !important;
  font-size: 28px;
}

.credits-v2-title {
  color: #262365;
  font-family: "Geist", sans-serif !important;
  font-weight: bold !important;
  font-size: 34px;
  padding: 30px;
  gap: 25px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}

.credits-v2-title svg {
  transform: rotate(180deg);
}

.credits-v2-wrapper.active .credits-v2-title svg {
  transform: rotate(0deg);
}

.credits-v2-text {
  color: #525252;
  font-family: "Avenir", sans-serif !important;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.credits-separator {
  display: flex;
  width: 100%;
  height: 1px;
  background: #432dd0;
  margin: 30px 0;
}

ul.features-wrap {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  width: 100%;
}

li.feature-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  font-family: "Avenir", sans-serif !important;
  padding: 12px 0;
}

li.feature-item svg {
  height: 18px;
  width: 18px;
  display: flex;
}

.credits-v2-button {
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Geist", sans-serif !important;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 40px;
}

@media screen and (max-width: 792px) {
  ul.features-wrap {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .credit-bundles-wrap {
    flex-wrap: wrap;
  }
  .credit-bundle-wrap{
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 623px) {
  ul.features-wrap {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .credit-bundle-wrap{
    width: 100%;
  }
}
