.onlymobile-container {
  display: none;
}

@media (max-width: 560px) {
  .onlymobile-container {
    width: 100%;
    padding: 0.5rem;
    position: fixed;
    display: block;
    z-index: 100;
    background-color: transparent;
    bottom: 0;
    opacity: 0;
    transform: translateY(100%); /* Start offscreen, at the bottom */
    transition: transform 300ms ease, opacity 300ms ease;
  }
  .onlymobile-container.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .onlymobile-container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1rem;
    height: 4rem;
    border-radius: 0.5rem;
    border: 2px solid #1e3a8a;
  }
  .onlymobilewhatsappcallnow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #1e3a8a;
    font-weight: 600;
  }
  .onlymobilewhatsappcallnow span img {
    width: 1.25rem;
    height: 1.25rem;
  }
  .onlymobileestimate-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 4rem;
    font-size: 0.875rem;
    color: #1e3a8a;
    font-weight: 600;
    border: none;
    background: transparent;
  }
  .onlymobileestimate-subcontainer {
    position: absolute;
    top: -1rem;
    background-color: white;
    width: 4rem;
    height: 4rem;
    border-top: 1px solid #1e3a8a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .onlymobileestimate-text {
    position: relative;
    top: 2rem;
  }
  .onlymobileestimate-img {
    display: flex;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    background-color: white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
  }
  .onlymobileestimate-img img {
    width: 2rem;
    height: 2rem;
  }
}
