/*

	Mobile CTA Bar Stylesheet

	ORB Solutions

	Additional Stylesheet for the Custom ORB Theme (Child Theme of Hello Elementor)

	Version: 1.0.3

*/

#orb-mobile-bar {
  display: none;
}

/* Update to match main stylesheet mobile breakpoint */
@media screen and (max-width: 800px) {
  #orb-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    z-index: 99;
    justify-content: space-between;
    font-family: Montserrat;
    background-color: var(--brand-color-1);
  }

  .orb-bar-button {
    display: flex;
    width: 33%;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
  }

  .orb-bar-button svg {
    height: 30px;
    fill: var(--brand-color-3);
  }

  .orb-bar-button span {
    color: var(--brand-color-3);
  }

  #orb-header-phone {
    display: none;
  }

  #orb-header-cta {
    width: 60%;
  }

  #orb-site-footer {
    padding-bottom: 100px;
  }
}