/* InsuranceContainer Section */

.app_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
  }
  
  .insuranceSection {
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
    max-width: 520px;
    width: 100%;
    gap: 3px;
    padding: 12px;
    box-sizing: border-box;
    height: 100vh;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .insuranceContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .flexContainer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .redeem_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 12px;
    padding-block: 20px;
    background-color: #20213f;
    border-radius: 24px;
    border: 1px solid #404380;
    width: -webkit-fill-available;
  }
  
  .redeem_box_text {
    font-size: 21px;
    line-height: 32px;
    color: white;
    font-weight: 600;
  }
  
  .main_title_text {
    font-size: 20px;
    line-height: 28px;
    color: white;
    font-weight: 700;
  }
  
  .insuranceDetailContainer {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .relativeButtonContainer {
    position: relative;
  }
  
  .ad_Text {
    position: absolute;
    top: 2px;
    font-size: 8px;
    right: -14px;
  }
  
  .Pera_Container {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  
  .blog_post_subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: white;
    padding: 0;
  }
  
  .blog_paragraph_text {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }
  
  .blog_subpost_img {
    border-radius: 24px;
  }
  
  .insurance_number {
    list-style-type: decimal;
    padding-top: 5px;
    padding-bottom: 0px;
    padding-left: 18px;
  }
  
  .insurance_point {
    list-style-type: circle;
    padding-top: 5px;
    padding-bottom: 0px;
    padding-left: 18px;
  }
  
  /* .insurance_point li {
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 24px;
  } */
  
  .blog_container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .insurance_number li {
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  
  .insurance_point {
    list-style-type: disc;
    padding-bottom: 0px;
    padding-left: 18px;
  }
  
  .insurance_point li {
    padding-bottom: 10px;
  }
  
  .best_insurance {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .buttonContainer {
    gap: 40px;
  }
  
  .cusBtnOption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--bg-secondary);
    font-size: 15px;
    padding: 8px 19px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 14px rgb(0 0 0 / 40%);
    color: white !important;
    border: 1px solid #404380;
    font-weight: 500;
    line-height: 21px;
  }
  
  /* ***************************************************************************************** */
  
  .toast {
    position: fixed;
    top: 25px;
    right: 20px;
    border-radius: 4px;
    background: #fff;
    padding: 9px 77px 9px 15px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    background-color: #555;
    z-index: 99;
  }
  
  .toast.activeToast {
    transform: translateX(0%);
  }
  
  .toast .toast-content {
    display: flex;
    align-items: center;
  }
  
  .toast-content {
    display: flex;
    gap: 16px;
  }
  
  .toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #2770ff;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
  }
  
  .toast-content .message {
    display: flex;
    flex-direction: column;
  }
  
  .message .text {
    font-size: 1rem;
    /* 16px */
    line-height: 1.5rem;
    /* 24px */
    color: white;
  }
  
  .message .text.text-1 {
    font-weight: 600;
    color: #333;
  }
  
  .toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
  }
  
  .toast .close:hover {
    opacity: 1;
  }
  
  .toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
  }
  
  .toast .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #e74c3c;
  }
  
  .toast.success .progress:before {
    background-color: #bb86fc;
    /* Success green color */
  }
  
  .toast.error .progress:before {
    background-color: #e74c3c;
    /* Success green color */
  }
  
  .progress.activeToast:before {
    animation: progress 5s linear forwards;
  }
  
  @keyframes progress {
    100% {
      right: 100%;
    }
  }
  
  @media (max-width: 450px) {
    .toast {
      top: 0px;
      right: 0px;
      padding: 0px 44px 10px 15px;
    }
  }
  
  @media (max-width: 768px) {
    .redeem_box_text {
      font-size: 16px;
    }
  }
  
  /* ************************************************************************************** */
  .popup-ad-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .close-popup {
    background-color: #ebebeb;
    border: 2px solid #000;
    border-radius: 20%;
    color: #000;
    cursor: pointer;
    font-family: arial;
    font-size: 25px;
    font-weight: 700;
    height: 30px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: center;
    position: absolute;
    top: -40px;
    left: 0px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .popup-content {
    position: relative;
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #888;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    /* Default width */
    min-height: 280px;
    /* Default height */
  }
  
  #div-gpt-ad-1737541487066-0 {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .popup-content {
      min-width: 350px;
    }
  }
  
  .sticky_ads {
    position: fixed;
    bottom: 0%;
    right: 50%;
    left: 50%;
    overflow: hidden;
    padding: 0px 8px 0px 5px;
    margin: 0 auto 10px auto;
    background-color: #000000c2;
    transform: translate(-50%, 10%);
    display: flex;
    justify-content: center;
    width: 100%;
    /* min-width: 360px; */
  }
  
  /* ***************************************** contact us css ****************************************** */
  
  .five_blog_input {
    width: -webkit-fill-available;
    padding: 14px 12px;
    border-radius: 12px;
    border: 1px solid #D3E9F5;
    box-shadow: 0px 4px 24px 0px #00000014;
    margin-bottom: 10px;
    outline: none;
    font-size: 15px;
  }
  
  textarea#message {
    width: -webkit-fill-available;
    padding: 14px 12px;
    border-radius: 12px;
    border: 1px solid #D3E9F5;
    box-shadow: 0px 4px 24px 0px #00000014;
    margin-bottom: 10px;
    outline: none;
    font-size: 17px;
  }
  
  textarea {
    resize: none;
    width: 100%;
    height: 150px;
  }
  
  .five_blog_btn {
    width: 100%;
    border-radius: 12px;
    background-color: var(--bg-secondary);
    color: white;
    border: 0;
    padding: 10px;
    font-size: 19px;
    margin-bottom: 15px;
    border: 1px solid #404380;
  }
  
  .section-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .email_text {
    font-size: 16px;
    color: #ffffff;
    padding: 0;
  }
  
  .section-text {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }
  
  .section-text p {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
  }
  
  .terms-title {
    padding: 0 0 15px 0;
    font-size: 26px;
    font-weight: 600;
  }
  
  .section p {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 24px;
  }
  
  /* ***************************************** faq page css ****************************************** */
  .faq-item {
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #404380;
    box-shadow: 0px 4px 24px 0px #00000014;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    background-color: #1a2f77;
    padding: 10px 15px;
    cursor: pointer;
    /* border-bottom: 1px solid #2F9CD933; */
  }
  
  .faq-item input[type="checkbox"]:checked+label+.content {
    max-height: 300px;
    padding: 12px;
    border-top: 1px solid #404380 !important;
  }
  
  .faq-item .content {
    background-color: transparent;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
    border-radius: 0 0 12px 12px;
  }
  
  .faq-item .content p {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
  }
  
  .faq-item input[type="checkbox"]:checked+label::after {
    content: '-';
  }
  
  .faq-item label::after {
    content: '+';
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .faq-item input[type="checkbox"] {
    display: none;
  }
  
  /* ***************************************** footer css ****************************************** */
  .footer-logo {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .footer-text {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgb(255, 255, 255);
    font-weight: 500;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .footer-logo a {
    padding: 0;
  }
  
  i.fa-brands.fa-x-twitter,
  i.fa-brands.fa-threads,
  i.fa-brands.fa-instagram,
  i.fa-brands.fa-facebook-f {
    font-size: 22px;
  }
  
  .icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 6px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
  }
  
  .icon:hover {
    background: rgb(58, 90, 198);
  }
  
  .footer-title {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 8px;
    color: rgb(255, 255, 255);
  }
  
  .footer-links li {
    margin: 7px 0;
  }
  
  .footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
    padding: 0;
    font-weight: 400;
    font-size: 17px;
  }
  
  .footer-links {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .footer-links a:hover {
    color: #7b99ff;
  }
  