.company_logo {
  position: absolute;
  width: 100%;
  top: 40px;
  background: #FFF;
  text-align: center;
  padding-top: 20px;
}

.container-fluid, .container-fluid-right {
  max-width: 1140px;
}

.navbar-login {
  background: #0077E5;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  padding-right: 35px;
  align-items: center;
}

.dropdown-menu.show {
  display: none;
}

.top-bar {
  background: #0077E5;
  color: #FFF;
  line-height: 17px;
  height: 38px;
}

.top-bar-link {
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.navbar-login a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.navbar-custom {
  background: #FFF;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
  color: black !important;
  font-weight: 500;
  font-size: 0.8rem;
}

.navbar-text {
  color: #FFF;
  display: flex;
  padding: 0 10px;
  font-weight: 500;
}

.separator {
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-text a:hover {
  text-decoration: underline; /* Optional: Add underline on hover */
}

#freetrialbutton:hover {
  color: #212529;
  background-color: #a3c9f0;
  border-color: #f8f9fa;
}

/*NOTE: The following sets of media queries deal with navbar spacing as the screen gets smaller - it deals with crowding that can cause the navbar to get out-of-whack. */
@media (min-width: 768px) {
  #navbarCollapse {
    justify-content: flex-end !important;
  }
}
@media (max-width: 900px) and (min-width: 768px) {
  .show-icon {
    display: none;
  }
}
.nav-item-custom {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}

@media (max-width: 800px) {
  .nav-item-custom {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 1070px) {
  .pulldown-label-normal {
    display: none;
  }
  .pulldown-label-abbreviate {
    display: inline;
  }
  .dropdown-adjust-position {
    left: -80px;
  }
}
@media (min-width: 1069px) {
  .pulldown-label-normal {
    display: inline;
  }
  .pulldown-label-abbreviate {
    display: none;
  }
  .dropdown-adjust-position {
    left: 0;
  }
}
.navbar .right-bar .dropdown {
  /*right: 7rem;*/
  justify-content: flex-end;
}

/*form Submenus*/
.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
  top: 70%;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .open-left {
  top: 0;
  left: -10rem;
  margin-top: -6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
}