@font-face {
    font-family: 'BrownStd';
    font-weight: normal;
    font-style: normal;
  }
  
  #eddyfi-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
    display: none;
    z-index: 9999;
    font-size: 18px;
    font-family: 'BrownStd', Arial, sans-serif;
    overflow-y: auto;
    height: 100vh;
  }
  
  #eddyfi-close-btn {
    position: fixed;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 100000;
  }
  
  
  .eddyfi-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    max-width: 75rem;
    width: 90%;
    margin: 0 auto;
  }
  
  .eddyfi-header {
    width: 100%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000;
    padding: 10px 30px;
    z-index: 10;
  }
  
    .eddyfi-header p {
      font-size: 18px;
      color: #b0b0b0;
      margin: 0;
      text-transform: capitalize;
    }
  
  .eddyfi-product-container {
    width: 100%;
    max-width: 70rem;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
  }
  
  .eddyfi-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .eddyfi-section-title {
    display: flex;
    align-items: left;
  }
  
    .eddyfi-section-title img {
      margin-right: 5px;
      width: 25px;
      height: 25px;
      position: relative;
      top: -15px;
    }
  
  
    .eddyfi-section-title span {
      font-size: 20px;
      color: #c2c2c2;
    }
  
  .eddyfi-divider {
    flex-grow: 1;
    border-top: 2px solid #ED8B00;
    margin: 0 16px;
  }
  
  .eddyfi-logos {
    margin-left: auto;
    margin-right: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: fit-content;
  }
  
  
    .eddyfi-logos img {
      height: 40px;
      width: auto;
    }

    img[alt="Sisgeo Logo"] {
        height: 60px;
      }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
  
  #eddyfi-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
  }
  
  #eddyfi-overlay.closing {
    animation: fadeOut 0.3s ease forwards;
  }
  
  #eddyfi-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    font-family: 'BrownStd', Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
    #eddyfi-banner span,
    .eddyfi-header p {
      text-transform: capitalize;
      font-size: 18px;
      color: #ffffff;
    }
  
  body.overlay-active {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }

  body {
    padding-top: 44px;
  }
  
  @media (max-width: 1024px) {
    #eddyfi-overlay {
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
  
    .eddyfi-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .eddyfi-section-title {
      flex-direction: column;
      align-items: center;
      margin-bottom: 15px;
      gap: 4px;
    }
  
      .eddyfi-section-title img {
        margin-bottom: 10px;
        top: 0;
      }
  
    .eddyfi-logos {
      margin-left: 0;
      justify-content: center;
      margin-right: 0px;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
      width: 100%;
    }
  
      .eddyfi-logos img {
        margin-left: 0;
        height: 40px;
        object-fit: contain;
        width: auto;
      }

      img[alt="Sisgeo Logo"] {
        height: 60px;
      }
  
    .eddyfi-divider {
      width: 100%;
      margin: 0;
    }
  
    .eddyfi-section-title img {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .eddyfi-logos {
      gap: 25px;
      margin-right: 0px;
    }
  
      .eddyfi-logos img {
        height: 35px;
        width: auto;
      }

      img[alt="Sisgeo Logo"] {
        height: 50px;
      }
  }
  
  @media (max-width: 376px) {
    #eddyfi-banner span {
      font-size: 15px;
      white-space: nowrap;
    }
    #eddyfi-banner span,
    .eddyfi-header p {
      font-size: 15px;
    }
  