/* Container Styles */
.tooltip-container {
  position: relative;
  display: inline-block;
  font-family: "Arial", sans-serif;
  overflow: visible;
}

/* Button Styles */
.anim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.3s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.anim-btn.btn-1{
    background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.anim-btn.btn-2{
    background: linear-gradient(135deg, #cb885b, #f46643);
}
.anim-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(110, 142, 251, 0.4),
    rgba(167, 119, 227, 0.4)
  );
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.anim-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.6s ease-out;
  z-index: -1;
}

.anim-btn:hover::before {
  opacity: 1;
}

.anim-btn:hover::after {
  transform: scale(1);
}

.anim-btn:hover {
  background: linear-gradient(135deg, #a777e3, #6e8efb);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px) scale(1.03);
}

.anim-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.text {
  font-size: 18px;
  font-weight: 600;
  margin-right: 12px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: letter-spacing 0.3s ease;
}

.anim-btn:hover .text {
  letter-spacing: 1px;
}

.share-icon {
  fill: white;
  transition:
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    fill 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.anim-btn:hover .share-icon {
  transform: rotate(180deg) scale(1.1);
  fill: #ffffff;
}

/* Tooltip Styles */
.tooltip-content {
  position: absolute;
  top: 102%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: white;
  border-radius: 15px;
  padding: 22px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    visibility 0.5s ease;
  z-index: 100;
  pointer-events: none;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

.tooltip-container:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

/* Social Icons Styles */
.social-icons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f0f0;
  transition:
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background 0.3s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: #333;
  transition:
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    fill 0.3s ease;
  z-index: 1;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-icon:active {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover svg {
  transform: scale(1.2);
  fill: white;
}

.social-icon.twitter:hover {
  background: linear-gradient(135deg, #1da1f2, #1a91da);
}

.social-icon.facebook:hover {
  background: linear-gradient(135deg, #1877f2, #165ed0);
}

.social-icon.linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #005e94);
}

/* Animation for Pulse Effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 142, 251, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(110, 142, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110, 142, 251, 0);
  }
}

.anim-btn {
  animation: pulse 3s infinite;
}

/* Hover Ripple Effect */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.anim-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
}

.anim-btn:active::before {
  animation: ripple 0.6s linear;
}

/* Tooltip Arrow */
.tooltip-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent rgba(255, 255, 255, 0.9) transparent;
  filter: drop-shadow(0 -3px 3px rgba(0, 0, 0, 0.1));
}

/* Accessibility */
.anim-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(110, 142, 251, 0.5),
    0 8px 15px rgba(0, 0, 0, 0.1);
}

.anim-btn:focus:not(:focus-visible) {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .anim-btn {
    padding: 12px 24px;
    border-radius: 40px;
  }

  .text {
    font-size: 16px;
  }

  .tooltip-content {
    width: 240px;
    padding: 18px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .anim-btn {
    padding: 10px 20px;
  }

  .text {
    font-size: 14px;
  }

  .tooltip-content {
    width: 200px;
    padding: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .tooltip-content {
    background: rgba(30, 30, 30, 0.9);
    color: white;
  }

  .tooltip-content::before {
    border-color: transparent transparent rgba(30, 30, 30, 0.9) transparent;
  }

  .social-icon {
    background: #2a2a2a;
  }

  .social-icon svg {
    fill: #e0e0e0;
  }
}

/* Print Styles */
@media print {
  .tooltip-container {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .anim-btn,
  .share-icon,
  .social-icon,
  .tooltip-content {
    transition: none;
  }

  .anim-btn {
    animation: none;
  }
}

/* Custom Scrollbar for Tooltip Content */
.tooltip-content::-webkit-scrollbar {
  width: 6px;
}

.tooltip-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.tooltip-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.tooltip-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.inr-before::before{ content: '₹ '; }
.inr-after::after{ content: ' ₹'; }
.usd-before::before{ content: '$ '; }
.usd-after::after{ content: ' $'; }
.overflow-dots{ overflow: hidden !important; white-space: nowrap !important; text-overflow: ellipsis !important; }
[onclick]{ cursor: pointer !important; }
.btn-theme{ color: #000; background: #279a30 !important; border-color: #279a30 !important; }
.wait_screen{ display: block; width: 100%; height: 100%; position: fixed; z-index: 99999; top: 0; left: 0; background: #1e1f27; display: none; }
.loading_screen{ width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.my-bg-primary{ background-color: #171f2a !important; }
.border-bottom{ border-color: #202937 !important; }
textarea.form-select, input.form-select{ background-image: none !important; }
.alert p{ color: #000 !important; }

@media (min-width: 992px) {
.sidebar-wrapper .sidebar-heading { padding: 30px 24px 10px; }
}

.spinner {
  width: 3em;
  height: 3em;
  cursor: not-allowed;
  border-radius: 50%;
  border: 2px solid #444;
  box-shadow: -10px -10px 10px #6359f8, 0px -10px 10px 0px #9c32e2, 10px -10px 10px #f36896, 10px 0 10px #ff0b0b, 10px 10px 10px 0px#ff5500, 0 10px 10px 0px #ff9500, -10px 10px 10px 0px #ffb700;
  animation: rot55 0.7s linear infinite;
}

.spinnerin {
  border: 2px solid #444;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rot55 {
  to {
    transform: rotate(360deg);
  }
}

.logform .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 30px;
  width: 450px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.logform ::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.logform .form button {
  align-self: flex-end;
}

.logform .flex-column > label {
  color: #151717;
  font-weight: 600;
}

.logform .inputForm {
  border: 1.5px solid #ecedec;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.logform .input {
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  width: 85%;
  height: 100%;
}

.logform .input:focus {
  outline: none;
}

.logform .inputForm:focus-within {
  border: 1.5px solid #2d79f3;
}

.logform .flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.logform .flex-row > div > label {
  font-size: 14px;
  color: black;
  font-weight: 400;
}

.logform .span {
  font-size: 14px;
  margin-left: 5px;
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
}

.logform .button-submit {
  margin: 20px 0 10px 0;
  background-color: #151717;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
}

.logform .button-submit:hover {
  background-color: #252727;
}

.logform .p {
  text-align: center;
  color: black;
  font-size: 14px;
  margin: 5px 0;
}

.logform .btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.logform .btn:hover {
  border: 1px solid #2d79f3;
}

/** Login 38 start **/
.login-38 {
    background: #fff;
}

.login-38 a {
    text-decoration: none;
}

.login-38 .form-section {
    min-height: 100vh;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: #fff;
}

.login-38 h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Jost', sans-serif;
}

.login-38 .bg-img {
    min-height: 100vh;
    position: relative;
    display: flex;
    padding: 15px 0;
    background: url(saving-money.jpg) top left repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-38 .bg-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(17 30 183 / 16%);
}

.login-38 .form-inner {
    max-width: 500px;
    width: 100%;
}

.login-38 .form-section .extra-login {
    width: 100%;
    margin: 25px 0 25px;
    position: relative;
}

.login-38 .form-section .extra-login::before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    height: 1px;
    background: #d8dcdc;
    content: "";
}

.login-38 .form-section .extra-login > span {
    width: auto;
    float: none;
    display: inline-block;
    padding: 1px 20px;
    z-index: 1;
    position: relative;
    font-size: 14px;
    color: #424242;
    text-transform: capitalize;
    background: #fff;
}

.login-38 .form-section p {
    color: #424242;
    margin-bottom: 0;
    text-align: center;
    font-size: 16px;
}

.login-38 .form-section p a {
    color: #424242;
}

.login-38 .form-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.login-38 .form-section .social-list li {
    display: inline-block;
    margin-bottom: 5px;
}

.login-38 .form-section .thembo {
    margin-left: 4px;
}

.login-38 .form-section h3 {
    margin: 0 0 25px;
    font-size: 25px;
    color: #121212;
    font-weight: 400;
}

.login-38 .form-section .form-group {
    margin-bottom: 25px;
}

.login-38 .form-section .form-box {
    float: left;
    width: 100%;
    position: relative;
}

.login-38 .form-section .form-control {
    padding: 10px 20px;
    font-size: 16px;
    outline: none;
    height: 55px;
    background: rgba(23, 23, 23, 0.72);
    color: #424242 !important;
    border-radius: 3px;
    background: #fff;
    border: solid 1px #dedede;
}
.login-38 .form-section .form-control:-webkit-autofill {
  -webkit-text-fill-color: #424242 !important;
  transition: background-color 9999s ease-in-out 0s;
}
.login-38 .form-section .btn-md {
    cursor: pointer;
    padding: 15.5px 50px 14.5px 50px;
    font-size: 17px;
    font-weight: 400;
    height: 55px;
    font-family: 'Jost', sans-serif;
    border-radius: 3px;
}

.login-38 .form-section input[type=checkbox], input[type=radio] {
    margin-right: 3px;
}

.login-38 .form-section button:focus {
    outline: none;
    outline: 0 auto -webkit-focus-ring-color;
}

.login-38 .form-section .btn-theme.focus, .btn-theme:focus {
    box-shadow: none;
}

.login-38 .form-section .btn-theme {
    background: #6fca3d;
    border: none;
    color: #fff;
}

.login-38 .form-section .btn-theme:hover {
    background: #6cbc40;
}

.login-38 .form-section .terms {
    margin-left: 3px;
}

.login-38 .form-section .form-check {
    float: left;
    margin-bottom: 0;
    padding-left: 0;
}

.login-38 .form-section .form-check a {
    color: #424242;
    float: right;
}

.login-38 .form-check-input:checked {
    display: none;
}

.login-38 .form-section .form-check-input {
    position: absolute;
    margin-left: 0;
}

.login-38 .form-section .form-check label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    margin-left: -25px;
    border: 1px solid #c5c3c3;
    border-radius: 3px;
    background-color: #fff;
}

.login-38 .form-section .form-check-label {
    padding-left: 25px;
    margin-bottom: 0;
    font-size: 16px;
    color: #424242;
}

.login-38 .form-section .checkbox-theme input[type="checkbox"]:checked + label::before {
    background-color: #6fca3d;
    border-color: #6fca3d;
}

.login-38 .form-section input[type=checkbox]:checked + label:before {
    font-weight: 600;
    color: #fff;
    line-height: 15px;
    font-size: 12px;
    content: "\2713";
    padding-left: 0;
}

.login-38 .form-section input[type=checkbox], input[type=radio] {
    margin-top: 4px;
}

.login-38 .form-section a.forgot-password {
    font-size: 16px;
    color: #424242;
    float: right;
}

.login-38 .logo img {
    margin-bottom: 15px;
    height: 30px;
}

/** Social buttons start **/
.login-38 .social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.login-38 .social-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    width: 55px;
    height: 55px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    text-align: center;
    margin: 0 5px 5px;
    font-size: 20px;
}

.login-38 .social-button::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-radius: 3px;
    transition: 0.3s;
}

.login-38 .social-button:focus, .social-button:hover {
    color: #fff!important;
}

.login-38 .social-button:focus::after, .social-button:hover::after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin-left: calc(-50% - 1px);
}

.login-38 .social-button i, .social-button svg {
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.login-38 .social-button-facebook {
    color: #4867aa;
}

.login-38 .social-button-facebook::after {
    background: #4867aa;
}

.login-38 .social-button-twitter {
    color: #33CCFF;
}

.login-38 .social-button-twitter::after {
    background: #33CCFF;
}

.login-38 .social-button-linkedin {
    color: #2392e0;
}

.login-38 .social-button-linkedin::after {
    background: #2392e0;
}

.login-38 .social-button-google {
    color: #db4437;
}

.login-38 .social-button-google::after {
    background: #db4437;
}

@media (max-width: 992px) {
    .login-38 .form-section {
        padding: 30px 15px;
    }

    .login-38 .bg-img {
        display: none;
    }
}
.scale-50{ transform: scale(0.5) !important; }
.scale-70{ transform: scale(0.7) !important; }
.scale-80{ transform: scale(0.8) !important; }
.scale-90{ transform: scale(0.9) !important; }
input:disabled{ background:rgb(48, 57, 68) !important; }
select.myform option {
      color: black !important;
      background-color: white !important;
    }