I'm trying to override my application.css with other css, included in header. I want to customize my application.css by this way.
My header
= stylesheet_link_tag 'application', media: 'all'
= stylesheet_link_tag 'customized_css', media: 'all'
Actual

application.css.scss is overriding my tour.css.scss even its is loading before any other css
Edit
The order of files to override the style was right but application's selector specificity beats the tour's, so that's why. Solution - use ID instead.
Thanks to @tonyedwardspz for the solution