/* NAVBAR SPECIFIC CSS */
/* From 992px to 1110px → hide the button */
@media (min-width: 992px) and (max-width: 1160px) {
  #createAppBtn {
    display: none;
  }
}

/* From 992px to 1064px → hide the button */
@media (min-width: 992px) and (max-width: 1064px) {
  #nav-contact-sales {
    display: none;
  }
}

/* From 991px and below → show the button */
@media (max-width: 991px) {
  #createAppBtn {
    display: block;
  }
}

.sign-in-btn,
#pageSignIn,
#nav-contact-sales,
.menu-cart {
  border-radius: 0.25rem !important;
}

@media (min-width: 992px) {
  #pageSignIn {
    order: -1 !important;
  }

  .cart-button-container,
  #nav-contact-sales {
    margin-right: 0 !important;
  }
}
/* END OF NAVBAR SPECIFIC CSS */
