
/* Mobile */
@media only screen and (max-width: 767px) {
    .login-slider{
        display: none;
    }
  }
  
  /* Tablet / iPad Portrait */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .login-slider{
        display: none;
    }
  }
  
  /* Computer / Desktop / iPad Landscape */
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    
  }
  
  /* Large Monitor */
  @media only screen and (min-width: 1200px) and (max-width: 1919px) {
    
  }
  
  /* Widescreen Monitor */
  @media only screen and (min-width: 1920px) {
    
  }