.payments_buttons_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-btn {
  border-radius: 10px !important;
  background: linear-gradient(90deg, #36c3b0 80%, #40b5d6 100%);
  padding: 15px 20px 15px 20px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  color: #fff !important;
  font-weight: 500;
  position: relative;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.product-btn:hover {
  background: linear-gradient(90deg, #40b5d6 80%, #36c3b0 100%);
}
.payment_methods {
  display: flex;
  border: 1px solid #36c3b0;
  border-radius: 5px;
  background: linear-gradient(90deg, #36c3b0 80%, #40b5d6 100%);
  overflow: hidden;
}
.payment_method {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  color: #001d52;
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
  background: #fff;
}

.payment_method.active,
.payment_method:hover {
  background: transparent;
  color: #fff;
}
.loading.payments_buttons_wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 50%);
}
.loading.payments_buttons_wrapper::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 45%;
  width: 50px;
  height: 50px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #36c3b0;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
span.discount {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 8px 14px 0px rgba(0, 20, 83, 0.15);
  color: #ff3535;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 16px;
  position: absolute;
  top: -10%;
  right: 10%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 767px) {
  .buttons.inline {
    flex-wrap: wrap;
  }
  .buttons.inline .product-btn {
    width: calc(25% - 15px);
  }
  .buttons.inline .product-btn.trial {
    width: 100%;
    justify-content: center;
    gap: 10%;
  }
}
