﻿
/*
  We must create a bundle with virtual location as same as the Application location otherwise when you create a bundle and its virtual location is in some other path, then we may face the “file not found” issue.
   In case of below URLs, instead of pulling images from the path relative to a stylesheet, the browser was instead pulling them relative from the bundle location.
      http://site/webapp/images/line-filler.gif   (404 error, though correct)
      http://site/webapp/bundles/images/line-filler.gif 
*/

.animated-tr td, .animated-tr-down td, .animated-tr-end td {
    background-image: url('../../images/line-filler.gif');
}

/*****Safari Specific css****/
@media not all and (min-resolution:.001dpcm) {
    @media {
        .applyBackGround {
            background-image: url('../../images/checks-bg.png');
        }
    }
}
