/*!
  SlideMenu jQuery Responsive Sliding Menu
  @name slidemenu.theme.red.css
  @description a jQuery plugin for creating a sliding menu
  @version 1.0.0
  @author Max Lawrence 
  @site http://www.avirtum.com
  @copyright (c) 2016 Max Lawrence (http://www.avirtum.com)
*/
.slm-wrap.red-theme {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.slm-wrap.red-theme.slm-active {
  background-color: rgba(0, 0, 0, 0.7);
}
.slm-wrap.red-theme .slm-slide {
  background-color: #ed5565;
  background: -webkit-gradient(linear, left top, left bottom, from(#ed5565), to(#eb3e50));
  background: -webkit-linear-gradient(top, #ed5565, #eb3e50);
  background: -moz-linear-gradient(top, #ed5565, #eb3e50);
  -webkit-box-shadow: inset 0 2px 2px -2px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: inset 0 2px 2px -2px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 2px 2px -2px rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.slm-wrap.red-theme .slm-slide .slm-close {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  height: 25px;
  background-color: #ed5565;
  color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-align: left;
  z-index: 2;
}
.slm-wrap.red-theme .slm-slide .slm-close:hover {
  background-color: #c24653;
  color: #ffffff;
}
.slm-wrap.red-theme .slm-slide .slm-close:before {
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 25px;
  padding-left: 5px;
}
.slm-wrap.red-theme .slm-slide .slm-data {
  padding-top: 25px;
}
.slm-wrap.red-theme .slm-slide .slm-item > a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-box-shadow: inset 0px 2px 2px -2px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: inset 0px 2px 2px -2px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 2px 2px -2px rgba(255, 255, 255, 0.3);
  display: block;
  color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  text-decoration: none;
}
.slm-wrap.red-theme .slm-slide .slm-item > a:hover {
  background-color: #c24653;
  color: #ffffff;
}
.slm-wrap.red-theme .slm-slide .slm-item.slm-active > a {
  background-color: #c24653;
  color: #ffffff;
}
.slm-wrap.red-theme .slm-slide .slm-item-has-children a:before {
  content: "\f105";
  position: absolute;
  right: 10px;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 20px;
  padding-right: 0px;
}
.slm-wrap.red-theme.slm-responsive .slm-slide .slm-close {
  height: 40px;
  text-align: right;
}
.slm-wrap.red-theme.slm-responsive .slm-slide .slm-close:before {
  content: "\f060";
  line-height: 40px;
  padding-right: 10px;
}
.slm-wrap.red-theme.slm-responsive .slm-slide .slm-data {
  padding-top: 40px;
}
