@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  font-size: 16px !important;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  height: 80px;
  max-height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-weight: 600;
  margin: 0;
  font-size: 20px;
}

nav {
  display: flex !important;
  align-items: center;
  gap: 2rem;
}
.docs-btn {
  position: relative;
  color: inherit;
}

.docs-btn:after {
  background: none repeat scroll 0 0 transparent;
  bottom: -3px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #e31e26;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.docs-btn:hover:after {
  width: 100%;
  left: 0;
}

.buy-btn,
#pay_indian_stripe_card,
#pay_stripe_card,
#change_card,
#resume_subscription,
#cancel_subscription {
  position: relative;
  height: 40px;
  padding: 0 1.5rem;
  background: #e31e26;
  color: #fff !important;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
  outline: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

#cancel_subscription,
#resume_subscription {
  background: #777;
  margin-top: 1rem;
}

#pay_stripe_card,
#resume_subscription,
#change_card,
#pay_indian_stripe_card {
  font-size: 16px;
  padding: 0 2rem;
}

.buy-btn:before,
#pay_stripe_card:before,
#resume_subscription:before,
#change_card:before,
#pay_indian_stripe_card:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #ffffff94;
}

.buy-btn:before {
  animation: shiny-btn1 5s ease-in-out infinite;
}

#pay_stripe_card:before,
#resume_subscription:before,
#change_card:before,
#pay_indian_stripe_card:before {
  animation: shiny-btn1 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.navigation-btn-wrapper {
  height: 45px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  width: fit-content;
  margin: auto;
  border: 1px solid #e31e26;
}

.navigation-btn-wrapper li {
  width: 200px;
  height: 40px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.navigation-btn-wrapper .active-li {
  background: #ffe5e6;
  color: #e31e26;
  pointer-events: none;
}

.navigation-btn-wrapper li:not(.active-li):hover {
  color: #e31e26;
}

#payment_container {
  display: flex;
  align-items: center;
  padding: 3rem;
  gap: 2rem;
  height: calc(100vh - 45px - 80px);
}

.details-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 50%;
}

.details-wrapper h3 {
  text-align: center;
}

.details-wrapper h3,
.details-wrapper p {
  margin: 0;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.yt-iframe {
  border-radius: 16px;
  border: none;
}

dotlottie-player {
  position: absolute;
  width: 50vw;
  height: 100vh;
  z-index: -1;
}

#update_card,
#apply_card {
  background: #e31e26;
  box-shadow: none;
  border: none;
  font-weight: normal;
}

.total-amount-p {
  text-align: left;
  margin-bottom: 1rem;
}

#total_paid {
  font-size: 18px;
  font-weight: 500;
}

#billing_container {
  margin-bottom: 2rem;
  padding: 3rem;
}

#license_logs {
  border: none !important;
}

#license_logs th {
  color: white !important;
  border: none !important;
}

#license_logs td {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  width: fit-content;
}

#license_logs th:nth-last-child(-n + 3) {
  /*declarations*/
  text-align: center;
}

#license_logs tr td:last-child:not(.dataTables_empty) {
  display: flex;
  justify-content: center;
}

#license_logs tr td:nth-last-child(2),
#license_logs tr td:nth-last-child(3) {
  text-align: center;
}

.enterprise-banner {
  width: 90%;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #ff3cac;
  background-image: linear-gradient(
    225deg,
    #ff3cac 0%,
    #784ba0 50%,
    #2b86c5 100%
  );
  color: white;
  -webkit-box-shadow: 3px 3px 10px 3px #ddd;
  -moz-box-shadow: 3px 3px 10px 3px #ddd;
  box-shadow: 3px 3px 10px 3px #ddd;
  margin-top: 2rem;
}

.enterprise-banner-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.get-started {
  background: white;
  width: fit-content;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.02s;
  font-size: 14px;
  font-weight: bold;
  color: rgb(37, 37, 37) !important;
  z-index: 0;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
}

.get-started:hover {
  color: rgb(33, 0, 85) !important;
}

.get-started:active {
  transform: scale(0.97);
}

.get-started .hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.get-started .hoverEffect div {
  background: rgb(222, 0, 75);
  background: linear-gradient(
    90deg,
    rgba(222, 0, 75, 1) 0%,
    rgba(191, 70, 255, 1) 49%,
    rgba(0, 212, 255, 1) 100%
  );
  border-radius: 40rem;
  width: 10rem;
  height: 10rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 3s linear;
  opacity: 0.5;
}

.get-started:hover .hoverEffect div {
  width: 8rem;
  height: 8rem;
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
