/* ----------- Non-Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  #floating-header {
    width: 100%;
    text-align: center;
  }
  #floating-header .topLoginForm {
    display: none;
  }
}
/* ----------- Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  #floating-header {
    width: 100%;
    text-align: center;
  }
  #floating-header .topLoginForm {
    display: none;
  }
}


/* ----------- Large devices (desktops, less than 1200px) ----------- */
@media (max-width: 1102.99px) {
  .navbar-expand-lg .navbar-nav{
    width: 100%;
  }
  .navbar .nav-item{
    margin-right: 0;
    flex-grow: 1;
  }
}
@media (max-width: 991.99px) {
  .navbar-expand-lg .navbar-nav{
    flex-direction: row;
  }
  .collapse:not(.show){
    display: block;
  }
  .navbar .nav-item .dropdown-content .dropdown-item img{
    width: 50px;
  }
}