/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */
#content .product-navigation {
  width: 300px;
  right: -300px;
  left: auto;
  -webkit-transition: right 0.7s ease-out 0;
  -moz-transition: right 0.7s ease-out 0;
  -o-transition: right 0.7s ease-out 0;
  transition: right 0.7s ease-out 0;
}
#content .product-navigation.expanded {
  right: 0;
  left: auto;
  -webkit-transition: right 0.7s ease-out 0;
  -moz-transition: right 0.7s ease-out 0;
  -o-transition: right 0.7s ease-out 0;
  transition: right 0.7s ease-out 0;
}