/* No need for JS-triggered animation or opacity changes */

.animate-left,
.animate-right {
  animation-duration: 7s;
  animation-timing-function: ease-in-out;
  animation-direction: normal;
  animation-iteration-count: infinite;
  position: absolute;
}

/* Left image moves slightly right and back */
.animate-left {
  animation-name: float-left;
}

/* Right image moves slightly left and back */
.animate-right {
  animation-name: float-right;
}

/* Keyframes for smooth left-right motion */
@keyframes float-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(30%);
    /* Adjust distance as needed */
  }
}

@keyframes float-right {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-30%);
    /* Adjust distance as needed */
  }
}

.bg-img-group {
  overflow: hidden;
  position: absolute;
  height: 340px;
  width: 50%;
  bottom: 8%;
}

.bg-img-left {
  left: 0;
}

.bg-img-right {
  right: 0;
}

.table-hearder-bg-blue {
  background-color: #1187a6 !important;
  color: #fff !important;
  font-weight: normal !important;
  padding-left: 20px !important;
}

.table-hearder-bg-blue-light {
  background-color: #149ec2 !important;
  color: #fff !important;
  font-weight: normal !important;
  padding-left: 20px !important;
}

.table-background {
  background-color: #dcf2fb !important;
  color: #555 !important;
  padding-left: 20px !important;
}

.shadow-right {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

td.shadow-right {
  position: relative;
  background-color: #fff;
}

td.shadow-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  /* Slightly outside the cell */
  height: 100%;
  width: 5px;
  box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
  /* Right shadow */
  pointer-events: none;
}

.pointer {
  cursor: pointer;
}

.logo-centered {
  width: 60px;
}

.centered-img {
  width: 580px;
}

@media (max-width: 600px) {
  .centered-img {
    width: auto;
  }
}
.nav-link.active {
  background-color: #0d6efd;
  color: white !important;
}

.nav-pills {
  background-color: #f8f9fa;
}

.border-box {
  border: 1px solid #dee2e6;
  min-height: 100px;
}

.dashed-box {
  border: 2px dashed #006ea6;
  padding: 1rem;
  height: 100%;
  border-radius: 8px;
}

.highlight-star::before {
  content: "⭐";
  margin-right: 5px;
}

.form-check-input {
  margin-right: 0.5rem;
}

.recommended-badge {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #e6f2ff;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-top: 0.3rem;
}

#tabMenu {
  background-color: var(--color-off-white);
}

#tabMenu button {
  color: var(--color-gray);
}

#tabMenu .active {
  background-color: #006ea6 !important;
}

.tally-check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.tally-check-list li {
  position: relative;
  padding-left: 28px;
  /* space for icon */
  font-size: 0.95rem;
}

.tally-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 18px;
  height: 18px;
  background-image: url("/wp-content//themes/tally/assets/images/product-evaluation/check-tally.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.center-absolute {
  position: absolute;
  top: 50%;
  transform: translate(-0%, -50%);
}
.diamond {
  width: 130px;
  height: 130px;
  background-color: #ccc;
  transform: rotate(45deg);
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diamond span {
  display: block;
  transform: rotate(-45deg);
  color: #333;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  padding: 1.5rem 1rem;
}

.line {
  width: 2px;
  height: 40px;
  background-color: currentColor;
  margin: 0 auto;
}

.feature-box {
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 0.5rem;
  margin: 0.3rem 0;
  text-align: center;
  font-size: 0.95rem;
}

.feature-column {
  text-align: center;
  color: #888;
}

.purple {
  color: #9b8dd2;
}

.blue {
  color: #8bb8f0;
}

.green {
  color: #75c199;
}

.pink {
  color: #f199ae;
}

.sky {
  color: #82cbee;
}

.text-inherit {
  color: inherit;
  text-decoration: none;
}

.text-inherit:hover {
  text-decoration: underline;
  /* Optional */
}

.text-inherit:focus {
  outline: none;
  text-decoration: underline;
  /* Optional */
}

/*  */
.trial-toggle .btn {
  border-radius: 0.375rem;
  border: none;
  color: var(--color-gray);
}

.trial-toggle .btn.active {
  background-color: var(--color-light-blue);
  color: white;
}

.trial-toggle .btn:hover {
  background-color: var(--color-light-blue) !important;
  color: white;
}

.trial-price-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  position: relative;
  height: 100%;
}

.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1a9ebf;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.trial-price {
  font-size: 1.8rem;
  font-weight: bold;
}

.strikethrough {
  text-decoration: line-through;
  font-size: 0.9rem;
  color: #888;
}

.w-fit {
  width: fit-content;
}
.form-group-sec {
  margin-bottom: 14px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.input-no-border:focus {
  outline: none !important;
  /* border: none !important; */
  box-shadow: none !important;
}

.card-full-height {
  height: 100%;
}

.border-top-orange {
  border-top: 15px solid #fcaf1b;
}

.border-top-sky {
  border-top: 15px solid #149ec2;
}

.radio-label {
  display: block;
  margin-bottom: 0.5rem;
}

/* Hide native radio */
.recom-radio input[type="radio"] {
  display: none;
}

/* Style label as radio button */
.recom-radio label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
}

/* Outer circle */
.recom-radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background-color: transparent;
}

/* Inner dot when selected */
.recom-radio input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
}

/* Theme specific radio colors */
.radio-sky label::before {
  border-color: #149ec2;
}

/* .radio-sky input[type="radio"]:checked+label {
            color: #149EC2;
        } */

.radio-sky input[type="radio"]:checked + label::after {
  background-color: #149ec2;
}

.radio-orange label::before {
  border-color: #fcaf1b;
}

/* .radio-orange input[type="radio"]:checked+label {
            color: #FCAF1B;
        } */

.radio-orange input[type="radio"]:checked + label::after {
  background-color: #fcaf1b;
}

.back-button {
  position: absolute;
  top: 120px;
  left: 40px;
  z-index: 99;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  opacity: 0.5;
  font-size: 14px;
  transition: opacity 0.3s ease;
  background: transparent;
}

.back-button:hover {
  opacity: 1;
}

.blur-element {
  filter: blur(5px);
  /* Adjust the px value to increase/decrease the blur */
}
