body {
  background: #f8fbfd !important;
}
section {
  margin: 80px 0;
}
section#payButton {
  display: none;
}
fieldset {
  padding: 15px 50px;
  border: 1px solid #e8e8fb;
}
footer {
  background: #333;
}
a:hover {
  text-decoration: none;
}
.button {
  display: block;
  background: #666ee8;
  color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  border: 0;
  font-weight: 700;
  width: 100%;
  height: 40px;
  outline: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.head-wrapper {
  width: 100%;
  background: #e8e8fb;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
.btn-cus-style {
  color: #fff;
  font-size: 1rem;
  line-height: 41px;
  background: #e02020;
  text-transform: uppercase;
  width: 100%;
  max-width: 200px;
  height: 50px;
  display: inline-block;
  text-align: center;
  border: 0px none;
  padding-left: 21px;
  padding-right: 21px;
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  margin: 20px 0;
}
.btn-cus-style:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16) !important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  background: #e02020;
}
.btn-cus-style:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 31px;
  background: url(../img/left_angle.png) 0px 0px no-repeat;
  z-index: 2;
  top: -5px;
  left: -5px;
}
.btn-cus-style:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 31px;
  background: url(../img/right_angle.png) 0px 0px no-repeat;
  z-index: 2;
  bottom: -5px;
  right: -5px;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 6px; /* space between label and icon */
  color: #007bff; /* blue info color */
  font-weight: bold;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* show above */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
#acc_info_form {
  margin-top: 20px;
}

#acc_info_form .form-group input,
#acc_info_form .form-group select {
  color: #1c1c1c !important;
  font-size: 1.05rem !important;
  height: auto !important;
  padding: 0.675rem 0.75rem !important;
}
#acc_info_form .form-group label {
  font-size: 1.05rem !important;
  color: #1c1c1c !important;
}
#acc_info_form .btn-cus-style {
  max-width: 100%;
  background-color: #29aa22;
  font-weight: bold;
  text-decoration: none;
  margin: 5px 0 !important;
}
#acc_info_form fieldset {
  padding: 40px;
  border: 1px solid #e8e8fb;
}

#subscription-form .btn-cus-style {
  max-width: 100%;
  background-color: #29aa22;
  font-weight: bold;
  text-decoration: none;
  margin: 5px 0 !important;
}
#subscription-form fieldset {
  padding: 40px;
  border: 1px solid #e8e8fb;
}
section#form p {
  line-height: 200%;
}
input::placeholder {
  color: #1c1c1c !important;
}
span.tool_tip {
  cursor: pointer;
  position: relative;
}

/* .chq_img {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  opacity: 1;
  pointer-events: none; 
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 10;
} */

.chq_holder_div{
  position: relative;
}

.chq_img {
    position: relative;
    top: 0;
    right: 0;
    /* width: 80px; */
    opacity: 1;
    pointer-events: none;

    transition: opacity 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background: #fff;
    z-index: 10;
    max-width: 60%;
    margin: 20px auto;
    display: block;
}

/* Hover in (fade + slide up) */
.tool_tip:hover .chq_img {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.help_div {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.help_div i {
  font-size: 20px;
}
.help_div p {
  margin-bottom: 0;
  color: #1c1c1c;
}
.help_div p a {
  color: #29aa22;
  text-decoration: none;
}
.secure-message {
  font-size: 16px;
  color: #1c1c1c;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden; /* hide sliding text */
  height: 1.2em; /* lock height so only one line is visible */
}

/* .msg-wrapper {
  position: relative;
  height: 1.2em;
  overflow: hidden;
} */

.msg {
  position: absolute;
  top: -2px;
  left: 5%;
  opacity: 0;
  transform: translateY(100%);
  animation: rotateText 6s infinite;
}
.account-info{
  display:none;
}

.msg.first {
  animation-delay: 0s; /* starts immediately */
}

.msg.second {
  animation-delay: 3s; /* starts after first finishes */
}

.stripe-card-element {
    padding: 12px 16px;
    border: 1px solid #e1e8ee;
    border-radius: 6px;
    background: white;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.stripe-card-element--focus {
    border-color: #6772e5;
    box-shadow: 0 0 0 1px #6772e5;
    outline: none;
}

.stripe-card-element--invalid {
    border-color: #fa755a;
    box-shadow: 0 0 0 1px #fa755a;
}

.stripe-card-element--complete {
    border-color: #24b47e;
    box-shadow: 0 0 0 1px #24b47e;
}

/* Target individual iframes if needed */
.StripeElement {
    width: 100%;
}
#acc_info_form{
  display: none;
}
#subscription-form{
  display: none;
}
@keyframes rotateText {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  10% {
    opacity: 1;
    transform: translateY(0%);
  }
  40% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@media (max-width: 767px) {
  #acc_info_form fieldset {
    padding: 11px;
    border: 1px solid #e8e8fb;
  }
  .msg {
    left: 7%;
  }
  .chq_img{
    width:200px;
    /* left:82px;
    top:106%; */
  }
}

span.msg {
    left: auto !important;
} 
@media(max-width:767px){#subscription-form fieldset {
    padding: 22px;
}}

